home *** CD-ROM | disk | FTP | other *** search
- #ifndef rawdrive_h
- #define rawdrive_h
-
- #ifndef errorsource_h
- #include "errorsource.h"
- #endif
-
- class rawdrive: public errorsource
- {
- private:
- short drive;
- short driver;
-
- public:
- rawdrive( const FSSpec& volume );
-
- OSErr read( long position, void *buffer, uint32& amount );
- OSErr write( long position, void *buffer, uint32& amount );
- };
-
- #endif rawdrive_h
-